VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This code changes a hex string eg ed0972ba628b29f0ec into its acsii equivalent eg ]E†̵

by David Bishton (1 Submission)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Mon 4th June 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This code changes a hex string eg "ed0972ba628b29f0ec" into its acsii equivalent eg "]E†‘NoŽ?Y". Useful for hex editors,

Rate This code changes a hex string eg ed0972ba628b29f0ec into its acsii equivalent eg ]E†̵



    
For y = 1 To Len(hextext)
    num = Mid(hextext, y, 2)
    value = value & Chr(Val("&h" & num))
    y = y + 1
Next y
hextext = value
End Function


Download this snippet    Add to My Saved Code

This code changes a hex string eg ed0972ba628b29f0ec into its acsii equivalent eg ]E†̵ Comments

No comments have been posted about This code changes a hex string eg ed0972ba628b29f0ec into its acsii equivalent eg ]E†̵. Why not be the first to post a comment about This code changes a hex string eg ed0972ba628b29f0ec into its acsii equivalent eg ]E†̵.

Post your comment

Subject:
Message:
0/1000 characters